* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-family: Arial, sans-serif;
}


/* ========== Hero Section Css Start ========*/
.pmc-hero {
  min-height: 40vh;
  background-image: url("../../assets/home page image/Hero\ section\ Image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: space-between;
  padding: 60px;
  color: #fff;
}
.pmc-hero-left {
  max-width: 65%;
}

.pmc-hero-left h1 {
  font-size: 42px;
  color: #ffd966;
}

.pmc-hero-left h2 {
  margin-top: 10px;
  font-size: 32px;
}
/* ========== Hero Section Css End ========*/

/* ========== PMC Section Css Start ========*/
.pmc-page {
    padding: 80px 0;
    background-color: #fcfcfc;
    font-family: 'Poppins', sans-serif;
}

.pmc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pmc-header {
    text-align: center;
    margin-bottom: 60px;
}

.pmc-header h1 {
    font-size: 2.8rem;
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pmc-header p {
    color: #777;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Grid Layout */
.pmc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 100px;
}

.pmc-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    object-fit: cover;
}

.pmc-content h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 25px;
    position: relative;
}

.pmc-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Features List */
.pmc-features {
    list-style: none;
    padding: 0;
}

.pmc-features li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
    color: #444;
}

.pmc-features i {
    color: #ff9800;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.pmc-features li span {
    display: block;
    line-height: 1.6;
}

.pmc-features i {
    color: #ff9800;
    font-size: 1.4rem;
    margin-right: 15px;
    margin-top: 3px;
}

/* Workflow Section */
.pmc-section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #222;
}

.pmc-workflow-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pmc-step {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #ff9800; 
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.pmc-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.2);
    background-color: #fffaf2; /* Halki si chamak ke*/
}

.pmc-step-num {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 15px;
    transition: 0.3s;
}

.pmc-step:hover .pmc-step-num, .pm-step:hover .pmc-step-num {
    color: #ff9800;
}

.pmc-step h3, .pm-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #111;
}

.pmc-step p, .pm-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}
/* ========== PMC Section Css End ========*/

/* ========== Mobile Responsive CSS START ========*/

@media (max-width: 480px) {

    .pmc-hero-left h1 {
        font-size: 24px;
    }
    
    .pmc-hero-left h2 {
        font-size: 18px;
    }
    
    .pmc-hero {
        padding: 30px 15px;
    }

    .pmc-page {
        padding: 50px 0;
    }
    
    .pmc-section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .pmc-hero {
        flex-direction: column; /* Content upar-niche dikhega */
        padding: 40px 20px; /* Side padding kam kar di */
        min-height: auto;
        text-align: center; /* Mobile par center text zyada achha lagta hai */
        justify-content: center;
    }

    .pmc-hero-left {
        max-width: 100%; /* Puri width lega */
        margin-bottom: 20px;
    }

    .pmc-hero-left h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .pmc-hero-left h2 {
        font-size: 22px;
        margin-top: 5px;
    }
}


@media (max-width: 992px) {
    .pmc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pmc-header h1 {
        font-size: 2.2rem;
    }
}

/* ========== Mobile Responsive CSS End ========*/
